home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / doc / examples / bigLabel.tcl next >
Text File  |  1995-06-29  |  409b  |  21 lines

  1. #! moat
  2.  
  3. xtAppInitialize
  4.  
  5. xmLabel .lbl managed
  6. .lbl setValues -labelString {
  7.     If you text contains newlines,
  8.     it will be broken into separate lines.
  9.     it may contains non-ascii characteres(ατΦ∞≡±≥≈°∙).
  10. }
  11.  
  12. .lbl setValues \
  13.     -stringDirection string_direction_r_to_l \
  14.     -alignment alignment_end \
  15.     -fontList -*-courier-bold-r-*--18-* \
  16.     -marginLeft 10 -marginWidth 10 \
  17.     -x 200 -y 100
  18.  
  19. . realizeWidget
  20. . mainLoop
  21.